#e
#Title[u@` F vs bv]
#Text[eAXƒؒep`FBcЂ˂͖BȂ̈ꔭBR͚bƎvB]
#ScriptVersion[2]

script_enemy_main {
    let name        = "u@` F vs bv";
    let imgBoss   = "script\img\ExRumia.png";
    let frame     =  0;
    let angleBase = 24;

	@Initialize
	{
		SetScore(82000);;//XyJ[h{[iX50000ɐݒ
		SetLife(1);//Ct240ɐݒ
		SetDamageRate(0,0);//_[W10%ɐݒ
		SetTimer(60);//Ԑ60bɐݒ
		CutIn(YOUMU,"u@` F vs bv",0,0,0,0,0);//XyJ[h\
	}


    @MainLoop {
        SetCollisionA(GetX, GetY, 24);
        SetCollisionB(GetX, GetY, 24);

        frame++;
        if(frame == 7) {
//肷

            CreateShot01(GetX, GetY,  10, angleBase     , RED21, 0);
            CreateShot01(GetX, GetY,   9, angleBase+   3, BLUE21, 0);
            CreateShot01(GetX, GetY,   9, angleBase-   3, YELLOW21, 0);
            CreateShot01(GetX, GetY,  12, angleBase+  12, RED21, 0);
            CreateShot01(GetX, GetY,  12, angleBase+  15, BLUE21, 0);
            CreateShot01(GetX, GetY,  12, angleBase+  18, YELLOW21, 0);
            CreateShot01(GetX, GetY,  10, angleBase-  115, GREEN21, 10);
            CreateShot01(GetX, GetY,  10, angleBase-  114, ORANGE21, 11);
            CreateShot01(GetX, GetY,  10, angleBase-  116, PURPLE21, 11);

            CreateShot01(GetX, GetY,  8, angleBase       , RED21, 30);
            CreateShot01(GetX, GetY,  8, angleBase+   120, BLUE21, 30);
            CreateShot01(GetX, GetY,  8, angleBase-   120, YELLOW21, 30);




//ς

            CreateShot01(GetX, GetY,  1, angleBase+     1, RED03, 60);

            CreateShot01(GetX, GetY,  2, angleBase     , RED04, 0);
            CreateShot01(GetX, GetY,  2, angleBase+  245, BLUE04, 5);
            CreateShot01(GetX, GetY,  2, angleBase-  739, YELLOW04, 10);





//I

            angleBase += 69;
            frame = 0;
        }



    }

    @DrawLoop {
        DrawGraphic(GetX, GetY);
    }

    @Finalize {
        DeleteGraphic(imgBoss);
    }
}